home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / Stdio_Setup.c,v < prev    next >
Text File  |  1991-12-02  |  4KB  |  147 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     90.10.11.22.10.13;  author kupfer;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.10.16.23.34;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.02.19.54.43;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Use function prototypes.
  32. @
  33. text
  34. @/* 
  35.  * Stdio_Setup.c --
  36.  *
  37.  *    Source code for the "Stdio_Setup" library procedure.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/Stdio_Setup.c,v 1.1 88/06/10 16:23:34 ouster Exp Locker: kupfer $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include "stdio.h"
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * Stdio_Setup --
  59.  *
  60.  *    This procedure is called by a client to initialize the information
  61.  *    associated with a stream.  This procedure is used by special-purpose
  62.  *    clients that provide their own low-level I/O;  for normal file I/O,
  63.  *    use fopen, freopen, or fdopen.
  64.  *
  65.  * Results:
  66.  *    None.
  67.  *
  68.  * Side effects:
  69.  *    The contents of stream are modified to set up for buffered I/O.
  70.  *    After this call has been made, the stream may be used in other
  71.  *    calls (e.g. getc and putc) to actually perform I/O.
  72.  *
  73.  *----------------------------------------------------------------------
  74.  */
  75.  
  76. void
  77. Stdio_Setup(stream, readable, writable, buffer, bufferSize, readProc,
  78.     writeProc, closeProc, clientData)
  79.     register FILE * stream;    /* Stream to be initialized. */
  80.     int readable;        /* Non-zero means stream is to be readable.  */
  81.     int writable;        /* Non-zero means stream is to be writable.
  82.                  * It's OK for a stream to be both readable
  83.                  * and writable.
  84.                  */
  85.     unsigned char *buffer;    /* Pointer to buffer space for the stream.
  86.                  * NULL means the stream will initially be
  87.                  * unbuffered. */
  88.     int bufferSize;        /* Size of buffer area. */
  89.     void (*readProc) _ARGS_((FILE *stream));
  90.                 /* Procedure to perform input for stream. */
  91.     void (*writeProc) _ARGS_((FILE *stream, Boolean flush));
  92.                 /* Procedure to perform output for stream. */
  93.     int (*closeProc) _ARGS_((FILE *stream));
  94.                 /* Procedure to close stream.  NULL means
  95.                  * there aren't any stream-dependent actions
  96.                  * to perform on close. */
  97.     ClientData clientData;    /* Client-specific information to store in
  98.                  * stream. */
  99. {
  100.     stream->lastAccess        = buffer-1;
  101.     stream->readCount        = 0;
  102.     stream->writeCount        = 0;
  103.     stream->buffer        = buffer;
  104.     stream->bufSize        = bufferSize;
  105.     stream->readProc        = readProc;
  106.     stream->writeProc        = writeProc;
  107.     stream->closeProc        = closeProc;
  108.     stream->clientData        = clientData;
  109.     stream->status        = 0;
  110.     stream->flags        = 0;
  111.     if (readable) {
  112.     stream->flags |= STDIO_READ;
  113.     }
  114.     if (writable) {
  115.     stream->flags |= STDIO_WRITE;
  116.     stream->writeCount = bufferSize;
  117.     }
  118. }
  119. @
  120.  
  121.  
  122. 1.2.1.1
  123. log
  124. @Initial branch for Sprite server.
  125. @
  126. text
  127. @d17 1
  128. a17 1
  129. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/Stdio_Setup.c,v 1.2 90/10/11 22:10:13 kupfer Exp $ SPRITE (Berkeley)";
  130. @
  131.  
  132.  
  133. 1.1
  134. log
  135. @Initial revision
  136. @
  137. text
  138. @d17 1
  139. a17 1
  140. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  141. d56 6
  142. a61 3
  143.     void (*readProc)();        /* Procedure to perform input for stream. */
  144.     void (*writeProc)();    /* Procedure to perform output for stream. */
  145.     int (*closeProc)();        /* Procedure to close stream.  NULL means
  146. @
  147.